home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19960425-19960715 / 000191_news@columbia.edu _Sun Jun 2 02:01:43 1996.msg < prev    next >
Internet Message Format  |  1996-07-26  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id CAA27178 for <kermit.misc@watsun>; Sun, 2 Jun 1996 02:01:42 -0400 (EDT)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.5/8.7.3) id CAA14930 for kermit.misc@watsun; Sun, 2 Jun 1996 02:01:39 -0400 (EDT)
  4. Path: news.columbia.edu!panix!imci5!imci4!newsfeed.internetmci.com!news.wolsi.com!news.aros.net!news.cs.utah.edu!cc.usu.edu!jrd
  5. From: jrd@cc.usu.edu (Joe Doupnik)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Kermit Takefile/Scripting Problems
  8. Message-ID: <1996May31.165415.81284@cc.usu.edu>
  9. Date: 31 May 96 16:54:15 MDT
  10. References: <31AF35C1.8ED@wheaton.edu>
  11. Organization: Utah State University
  12. Lines: 18
  13.  
  14. In article <31AF35C1.8ED@wheaton.edu>, "David B. Malone" <dmalone@wheaton.edu> writes:
  15. > I would appreciate assistance from a group member concerning a take 
  16. > file.  I am attempting to run a script that will telnet and autologin to 
  17. > a unix server.  The script functions, but too well.  It seems to be 
  18. > looping.  When I run the script (kermit take titus.scr) it telnets to 
  19. > the server, but will not run the input/output.  However when I close 
  20. > that initial session it begins another sessions and completes the 
  21. > autologin procedure.  In other words, it telnets twice, even though only 
  22. > one reference is made to the machine.  Mscustom and Mskermit.ini make no 
  23. > mention of the server.
  24. > Any scripting assistance would be greatly appreciated.
  25. -----------
  26.     If your script said CONNECT then that's the problem. Scripts do
  27. not run within terminal emulation (CONNECT) mode. Instead say
  28. SET PORT TCP blah, OUTPUT whatever, INPUT stuff, and so on, but with
  29. SET PORT TCP appearing first to identify the transport mechanism.
  30.     Joe D.